home *** CD-ROM | disk | FTP | other *** search
- #include "bbs.h"
-
- extern long BytesADL;
-
- void DisplayULStats(struct User *U)
- {
- char string[200];
-
- sprintf(string,"Number of Downloads : %d (%ldk total)\r\n",U->Downloads,U->Bytes_Download/1000L);
- AEPutStr(string);
- sprintf(string,"Number of Uploads : %d (%ldk total)\r\n",U->Uploads,U->Bytes_Upload/1000L);
- AEPutStr(string);
- sprintf(string,"Todays Bytes Available: %ld\r\n",BytesADL);
- AEPutStr(string);
-
- }
-